home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / olrdrs / qprn112.zip / EZ-PACK.BAT < prev    next >
DOS Batch File  |  1994-05-12  |  856b  |  21 lines

  1. REM This batch file is for saving your place in a QWK packet with EZ-RDR.
  2. REM The line "%1 -d %3 *.ndx" deletes the old .NDX files from the QWK
  3. REM packet if you're using EZ-RDR's default PKZIP command, PKZIP.EXE -EX.
  4. REM If you're using this command, and bookmarks are being inserted, %3 will
  5. REM be the name of the QWK file.  If you're not passing any options to
  6. REM PKZIP, this parameter will be %2.  If you're passing additional
  7. REM options, increase this parameter number by 1 for each additional
  8. REM option.  For example, if the PKZIP command is PKZIP.EXE -EX -K, %4
  9. REM would be the name of the QWK.
  10. REM
  11. @echo off
  12. parmscan *.RD %1 %2 %3 %4 %5 %6 %7 %8 %9
  13. if not errorlevel 1 goto bookmark
  14. %1 %2 %3 %4 %5 %6 %7 %8 %9
  15. goto endit
  16. :bookmark
  17. ren messages.bak messages.dat
  18. %1 -d %3 *.ndx
  19. %1 %2 %3 %4 %5 %6 %7 %8 %9 MESSAGES.DAT
  20. :endit
  21.